<style>
progress[value] {
/* Reset the default appearance */
-webkit-appearance: none;
appearance: none;

width: 250px;
height: 20px;
}

progress[value]::-webkit-progress-bar {
background-color: #eee;
border-radius: 2px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
</style>

<ons-page>

	<progress style="margin:10px" value="22" max="100">
</progress>

</ons-page>